home *** CD-ROM | disk | FTP | other *** search
/ Info-Mac 4 / Info_Mac IV CD-ROM (Pacific HiTech Inc.)(August 1994).iso / Sound / Utilities / MIDI Museum 1.10 Folder / Protocoles / TR-707 < prev   
Text File  |  1993-10-22  |  579b  |  30 lines

  1. Script( "TR-707")
  2.  
  3. WSF = 0xf0 0x41 0x50 0xf7
  4. RQF = 0xf0 0x41 0x51 0xf7
  5. DAT = 0xf0 0x41 0x52 0x02 $(514) 0xf7
  6. PAS = 0xf0 0x41 0x53 0xf7
  7. CNT = 0xf0 0x41 0x54 0xf7
  8. EOF = 0xf0 0x41 0x55 0xf7
  9.  
  10. Rec:
  11.         Send( RQF )
  12.         Repeat( 14,
  13.                Rec( DAT )
  14.                Rec( CNT )
  15.                Send( PAS )  )
  16.         Rec( DAT )
  17.         Rec( EOF )
  18.         Send( PAS )
  19.  
  20. Send:
  21.         Send( WSF )
  22.         Rec( RQF )
  23.         Repeat( 14,
  24.                Send( DAT )
  25.                Send( CNT )
  26.                Rec( PAS )   )
  27.        Send( DAT )
  28.        Send( EOF )
  29.        Rec( PAS )
  30.